-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove coach node #2101
Remove coach node #2101
Conversation
automated style fixes Co-authored-by: sid-parikh <sid-parikh@users.noreply.github.com>
Please enter a commit message to explain why this merge is necessary,
@@ -95,6 +99,10 @@ void AgentActionClient::world_state_callback(const rj_msgs::msg::WorldState::Sha | |||
last_world_state_ = std::move(world_state); | |||
} | |||
|
|||
void AgentActionClient::play_state_callback(const rj_msgs::msg::PlayState::SharedPtr& msg) { | |||
return; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey amogh, can you also change the AC & Position to get play state data from this topic? the callback is empty right now; we should be forwarding it to position. I know position doesn't use play state data right now, but that's okay
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, thanks!
This last commit calculates global overrides in the Planner Node (planner_node.cpp) |
Look at PR #2131 |
This pull request adds a Referee PlayState subscription to all the files that use CoachState and don't have play state already (which is just Agent Action Client). This is part of the plan to remove CoachNode.